From: Jim Blandy Date: Wed, 16 Jun 1993 21:42:25 +0000 (+0000) Subject: * unexec.c [HPUX] (sbrk): This returns a void *. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~95290 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=83cb209c0ddc07ea7fb487befc24d7ecf0c40395;p=emacs.git * unexec.c [HPUX] (sbrk): This returns a void *. --- diff --git a/src/unexec.c b/src/unexec.c index c07bc1a4be2..d14103f1dd5 100644 --- a/src/unexec.c +++ b/src/unexec.c @@ -207,11 +207,15 @@ static long data_scnptr; #else /* not COFF */ +#ifdef HPUX +extern void *sbrk (); +#else #ifdef __STDC__ extern void *sbrk (); #else extern char *sbrk (); -#endif +#endif /* __STDC__ */ +#endif /* HPUX */ #define SYMS_START ((long) N_SYMOFF (ohdr))